reflect.visibleFieldsWalker.fields (field)

10 uses

	reflect (current package)
		visiblefields.go#L26: 		fields:   make([]StructField, 0, t.NumField()),
		visiblefields.go#L34: 	for i := range w.fields {
		visiblefields.go#L35: 		f := &w.fields[i]
		visiblefields.go#L42: 			w.fields[j] = *f
		visiblefields.go#L46: 	return w.fields[:j]
		visiblefields.go#L52: 	fields   []StructField
		visiblefields.go#L71: 			old := &w.fields[oldIndex]
		visiblefields.go#L91: 			w.byName[f.Name] = len(w.fields)
		visiblefields.go#L92: 			w.fields = append(w.fields, f)